home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Desktop Settings.xpl < prev    next >
Text File  |  2002-04-12  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Desktop\Options"
  5. "NAME"="Save Item Positions"
  6. "VERSION"="3.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Save item positions on exit"
  9. "DESCRIPTION 1"="If this option is activated, the desktop saves the positions of every icon on the desktop on exit (default). If deactivated, Windows does not save the positions."
  10. "AUTHOR"="Xteq Systems"
  11. "CONTACTURL"="http://www.xteq.com/"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"="Thanks to Maxwell <maxwello@hotpop.com> for this setting."
  14. "COMMENT 2"="Thanks to Pierre Szwarc <http://perso.cybercable.fr/szwarc/> for the Windows 2000 part."
  15. "COMMENT 3"="Thanks to Serge LEICHTER [s.leichter@magic.fr] for the "My computer" bug notice."
  16.  
  17.  
  18. sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSaveSettings" 'BINARY!
  19.  
  20.  
  21. Sub Plugin_Initialize 
  22.     i=RegReadValue(sV2)
  23.     if IsEmpty(i) or i="00000000" then SetUIElement 1,true
  24. End Sub
  25.  
  26. Sub Plugin_CheckData(ElementIndex)
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  
  31.  b=GetUIElement(1)
  32.  if b=true then
  33.     Call RegWriteValue(sV2,"00000000",3)
  34.  else
  35.     Call RegWriteValue(sV2,"01000000",3)
  36.  end if
  37.  
  38. End Sub
  39.  
  40. Sub Plugin_Terminate 
  41. End Sub
  42.